conver all dict keys to str python

42

conver all dict keys to str python -

new_d = {str(key): str(value) for key, value in keys_values}

Comments

Submit
0 Comments